From 1844bfe6f8e14db094eff4d934a4c57bdea4a4a1 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 15 Apr 2010 12:28:33 +0100 Subject: [PATCH] Fix changeset 21153:d2d8805868f1 (xend can't start) 21153 forgets to update the format string so xend can't start. Signed-off-by: Dexuan Cui --- tools/python/xen/lowlevel/xc/xc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c index f1ab00a2b7..33febd0196 100644 --- a/tools/python/xen/lowlevel/xc/xc.c +++ b/tools/python/xen/lowlevel/xc/xc.c @@ -1175,7 +1175,7 @@ static PyObject *pyxc_physinfo(XcObject *self) if ( p != virt_caps ) *(p-1) = '\0'; - return Py_BuildValue("{s:i,s:i,s:i,s:i,s:i,s:l,s:l,s:l,s:i,s:s,s:s}", + return Py_BuildValue("{s:i,s:i,s:i,s:i,s:l,s:l,s:l,s:i,s:s,s:s}", "nr_nodes", pinfo.nr_nodes, "threads_per_core", pinfo.threads_per_core, "cores_per_socket", pinfo.cores_per_socket, -- 2.30.2